home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gsargs.c < prev    next >
C/C++ Source or Header  |  1997-06-05  |  4KB  |  160 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsargs.c */
  20. /* Command line argument list management */
  21. #include "ctype_.h"
  22. #include "stdio_.h"
  23. #include "string_.h"
  24. #include "gsexit.h"
  25. #include "gsmemory.h"
  26. #include "gsargs.h"
  27.  
  28. /* Initialize an arg list. */
  29. void
  30. arg_init(arg_list *pal, const char **argv, int argc,
  31.   FILE *(*arg_fopen)(P2(const char *fname, void *fopen_data)),
  32.   void *fopen_data)
  33. {    pal->expand_ats = true;
  34.     pal->arg_fopen = arg_fopen;
  35.     pal->fopen_data = fopen_data;
  36.     pal->argp = argv + 1;
  37.     pal->argn = argc - 1;
  38.     pal->depth = 0;
  39. }
  40.  
  41. /* Push a string onto an arg list. */
  42. void
  43. arg_push_string(arg_list *pal, const char *str)
  44. {    arg_source *pas;
  45.  
  46.     if ( pal->depth == arg_depth_max )
  47.       { lprintf("Too much nesting of @-files.\n");
  48.         gs_exit(1);
  49.       }
  50.     pas = &pal->sources[pal->depth];
  51.     pas->is_file = false;
  52.     pas->u.str = str;
  53.     pal->depth++;
  54. }
  55.  
  56. /* Clean up an arg list. */
  57. void
  58. arg_finit(arg_list *pal)
  59. {    while ( pal->depth )
  60.       if ( pal->sources[--(pal->depth)].is_file )
  61.         fclose(pal->sources[pal->depth].u.file);
  62. }
  63.  
  64. /* Get the next arg from a list. */
  65. /* Note that these are not copied to the heap. */
  66. const char *
  67. arg_next(arg_list *pal)
  68. {    arg_source *pas;
  69.     FILE *f;
  70.     const char *astr = 0;        /* initialized only to pacify gcc */
  71.     char *cstr;
  72.     const char *result;
  73.     int endc;
  74.     register int c;
  75.     register int i;
  76.     bool in_quote;
  77.  
  78. top:    pas = &pal->sources[pal->depth - 1];
  79.     if ( pal->depth == 0 )
  80.     {    if ( pal->argn <= 0 )        /* all done */
  81.           return 0;
  82.         pal->argn--;
  83.         result = *(pal->argp++);
  84.         goto at;
  85.     }
  86.     if ( pas->is_file )
  87.       f = pas->u.file, endc = EOF;
  88.     else
  89.       astr = pas->u.str, f = NULL, endc = 0;
  90.     result = cstr = pal->cstr;
  91. #define cfsgetc() (f == NULL ? (*astr ? *astr++ : 0) : fgetc(f))
  92.     while ( isspace(c = cfsgetc()) ) ;
  93.     if ( c == endc )
  94.     {    if ( f != NULL )
  95.           fclose(f);
  96.         pal->depth--;
  97.         goto top;
  98.     }
  99.     in_quote = false;
  100.     for ( i = 0; ; )
  101.     {    if ( i == arg_str_max - 1 )
  102.         {    cstr[i] = 0;
  103.             fprintf(stdout, "Command too long: %s\n", cstr);
  104.             gs_exit(1);
  105.         }
  106.         /* If input is coming from an @-file, allow quotes */
  107.         /* to protect whitespace. */
  108.         if ( c == '"' && f != NULL )
  109.           in_quote = !in_quote;
  110.         else
  111.           cstr[i++] = c;
  112.         c = cfsgetc();
  113.         if ( c == endc )
  114.           {    if ( in_quote )
  115.               { cstr[i] = 0;
  116.                 fprintf(stdout,
  117.                     "Unterminated quote in @-file: %s\n",
  118.                     cstr);
  119.                 gs_exit(1);
  120.               }
  121.             break;
  122.           }
  123.         if ( isspace(c) && !in_quote )
  124.           break;
  125.     }
  126.     cstr[i] = 0;
  127.     if ( f == NULL )
  128.       pas->u.str = astr;
  129. at:    if ( pal->expand_ats && result[0] == '@' )
  130.     {    if ( pal->depth == arg_depth_max )
  131.         {    lprintf("Too much nesting of @-files.\n");
  132.             gs_exit(1);
  133.         }
  134.         result++;        /* skip @ */
  135.         f = (*pal->arg_fopen)(result, pal->fopen_data);
  136.         if ( f == NULL )
  137.         {    fprintf(stdout, "Unable to open command line file %s\n", result);
  138.             gs_exit(1);
  139.         }
  140.         pal->depth++;
  141.         pas++;
  142.         pas->is_file = true;
  143.         pas->u.file = f;
  144.         goto top;
  145.     }
  146.     return result;
  147. }
  148.  
  149. /* Copy an argument string to the heap. */
  150. char *
  151. arg_copy(const char *str, gs_memory_t *mem)
  152. {    char *sstr = (char *)gs_alloc_bytes(mem, strlen(str) + 1, "arg_copy");
  153.     if ( sstr == 0 )
  154.     {    lprintf("Out of memory!\n");
  155.         gs_exit(1);
  156.     }
  157.     strcpy(sstr, str);
  158.     return sstr;
  159. }
  160.